Worldclim elevation map#
import cartopy.crs as ccrs
import hvplot.xarray
import xarray as xr
ds = xr.open_dataarray('wc2.1_10m_elev.tif')
ds = ds.sel(band=1)
ds.hvplot(x='x',y='y',width=1000,height=500)
import cartopy.crs as ccrs
import hvplot.xarray
import xarray as xr
ds = xr.open_dataarray('wc2.1_10m_elev.tif')
ds = ds.sel(band=1)
ds.hvplot(x='x',y='y',width=1000,height=500)